Hi Everyone,
I want to maintain a history of Student table. If any student are concurrent any update or remove in any columns then their records will be automatically save in StudentHistory table . Here, we will given a Student table script i.e. below:
USE [NewUniversity]
GO
/****** Object: Table
[dbo].[Student] Script Date: 2/25/2016
12:04:50 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Student](
[StudentID] [int] IDENTITY(1,1) NOT NULL,
[FirstName] [nvarchar](50) NOT NULL,
[LastName] [nvarchar](50) NOT NULL,
[EnrollmentDate] [datetime] NULL,
CONSTRAINT
[PK_dbo.Student] PRIMARY KEY CLUSTERED [StudentID]
ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF,
IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS =
ON) ON [PRIMARY]
) ON [PRIMARY]
GO
Please can anyone give me a complete code of
triggers on Student Table.
Thank you.
Anupam Mishra
25-Feb-2016